home *** CD-ROM | disk | FTP | other *** search
Makefile | 2004-08-03 | 342 b | 15 lines |
- # Ripple by Troels Walsted Hansen <troels@stud.cs.uit.no>, based on
- # xripple by Carsten «Rasterman» Haitzler <s2154962@cse.unw.edu.au>.
- #
- # Makefile for GCC
-
- C_OPTS = -V 2.95.3 -Wall -O3 -fomit-frame-pointer -D__USE_INLINE__
-
- # rules for four different versions
-
- all: Ripple
-
- Ripple: Ripple.c
- ppc-amigaos-gcc $(C_OPTS) Ripple.c -o $@ -lm
-
-